#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
#define int long long
const int maxn = 1.1e5, INF = 1e18;
int dp[maxn][200], n;
string s; vector<int> v;
string hard = "hard";
// 7
// hardard
// 10 10 1 10 10 10 1
int dpp(int i, int j){
if(i == n) return dp[i][j] = 0;
if(dp[i][j] != -1) return dp[i][j];
// s[i] eh a letra q eu to agora
// j eh a letra q eu to procurando
int tirar = v[i]+dpp(i+1, j);
int next = j;
if(s[i] == j){
if(s[i] == 'd'){
return dp[i][j] = tirar;
}
for(int k = 0; k < 3; k++){
if(hard[k] == s[i]){
next = hard[k+1];
}
}
}
int ficar = dpp(i+1, next);
return dp[i][j] = min(tirar, ficar);
}
void solve() {
cin >> n >> s;
for(int i = 0; i <= n; i++){
for(int j = 0; j < 200; j++) dp[i][j] = -1;
}
for(int i = 0; i < n; i++){
int x; cin >> x;
v.push_back(x);
}
dpp(0, 'h');
// int res = INF;
// for(int i = 0; i < n; i++){
// for(char c : hard){
// if(dp[i][c] != -1) res = min(res, dp[i][c]);
// }
// }
cout << dp[0]['h'] << endl;
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
solve();
}
115A - Party | 746B - Decoding |
1424G - Years | 1663A - Who Tested |
1073B - Vasya and Books | 195B - After Training |
455A - Boredom | 1099A - Snowball |
1651D - Nearest Excluded Points | 599A - Patrick and Shopping |
237A - Free Cash | 1615B - And It's Non-Zero |
1619E - MEX and Increments | 34B - Sale |
1436A - Reorder | 1363C - Game On Leaves |
1373C - Pluses and Minuses | 1173B - Nauuo and Chess |
318B - Strings of Power | 1625A - Ancient Civilization |
864A - Fair Game | 1663B - Mike's Sequence |
448A - Rewards | 1622A - Construct a Rectangle |
1620A - Equal or Not Equal | 1517A - Sum of 2050 |
620A - Professor GukiZ's Robot | 1342A - Road To Zero |
1520A - Do Not Be Distracted | 352A - Jeff and Digits |